home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / defcon-minus.swf / scripts / frame_8 / PlaceObject2_211_15 / CLIPACTIONRECORD onClipEvent(mouseMove).as
Encoding:
Text File  |  2011-10-17  |  232 b   |  10 lines

  1. onClipEvent(mouseMove){
  2.    if(!_root.gamePaused)
  3.    {
  4.       Xd = _root._xmouse - _X;
  5.       Yd = _root._ymouse - _Y;
  6.       radAngle = Math.atan2(Yd,Xd);
  7.       _rotation = int(radAngle * 360 / 6.283185307179586 + 90);
  8.    }
  9. }
  10.